@charset "utf-8";
/* CSS Document */
/* Royal Golden & Dark Blue Color Palette */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a1128;
    color: #ffffff;
    line-height: 1.6;
}

/* Top Bar Info */
.top-bar {
    background: #050a18;
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar i { 
    color: #d4af37; 
    margin-right: 5px; 
}

/* Main Navigation Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2e3a59;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.75rem;
    color: #d4af37;
    font-weight: 500;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f3c623 0%, #d4af37 100%);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.25);
    color: #f3c623;
}

/* Hero / Banner Area */
.hero-section {
    position: relative;
    padding: 90px 8% 70px;
    background: linear-gradient(rgba(10, 17, 40, 0.85), rgba(10, 17, 40, 0.95)), 
                url('https://images.unsplash.com/photo-1519817650390-64a93db51149?auto=format&fit=crop&w=1200&q=80') center/cover;
    text-align: center;
    border-bottom: 1px solid #2e3a59;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-title span { color: #d4af37; }

.hero-subtitle {
    color: #a0aec0;
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Services / Cards Grid Section */
.section {
    padding: 70px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    color: #ffffff;
}

.section-title span { color: #d4af37; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #1c2541;
    border: 1px solid #2e3a59;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.card-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #050a18;
    padding: 25px 8%;
    text-align: center;
    border-top: 1px solid #2e3a59;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* ===================================================
   SLIDER STYLING (Golden & Dark Blue Theme)
   =================================================== */

.slider-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 800px; /* Aap apni pasand se height kam/zyada kar sakte hain */
    overflow: hidden;
    background-color: #050a18;
    border-bottom: 2px solid #d4af37;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko stretch hone se bachata hai */
    object-position: center;
}

/* Next & Previous Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 17, 40, 0.7);
    color: #d4af37;
    border: 1px solid #d4af37;
    font-size: 1.5rem;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #d4af37;
    color: #000000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Golden Dots Indicators */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 35px; /* Active dot pill shape ban jayega bilkul photo jaisa */
    border-radius: 10px;
    background-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* ===================================================
   ROYAL DARK BLUE & LIGHT GOLDEN GRADIENT ANIMATION
   =================================================== */

/* Golden Shimmer Background Animation Keyframes */
@keyframes goldGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle Glowing Animation */
@keyframes goldenGlowPulse {
    0% { box-shadow: 0 0 10px rgba(243, 229, 171, 0.2); }
    50% { box-shadow: 0 0 25px rgba(243, 229, 171, 0.5); }
    100% { box-shadow: 0 0 10px rgba(243, 229, 171, 0.2); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a1128;
	

/* ===================================================
   BACKGROUND GRADIENT (ROYAL BLUE & LIGHT GOLD)
   =================================================== */


/* Subtle Golden Radial Glow Overlay for Center Section */
.welcome-section {
    padding: 70px 8%;
    text-align: center;
    background: radial-gradient(
        circle at center, 
        rgba(212, 175, 55, 0.12) 0%, 
        rgba(10, 17, 40, 0) 70%
    );
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
 

/* --- Animated Gradient Text (Golden Shimmer) --- */
.logo-text p, 
.section-title span, 
.hero-title span,
.animated-gold-text {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 40%, #fff0b3 70%, #aa7c11 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldGradientMove 4s ease infinite;
    font-weight: 700;
}

/* --- Top Bar Info --- */
.top-bar {
    background: #050a18;
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
    border-bottom: 1px solid rgba(243, 229, 171, 0.2);
}

.top-bar i { 
    color: #f3e5ab; 
    margin-right: 5px; 
}

/* --- Navigation Header with Animated Border --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #0a1128, #f3e5ab, #d4af37, #0a1128) 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    background-size: 200% 200%;
    animation: goldGradientMove 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    color: #f3e5ab;
    background: rgba(243, 229, 171, 0.1);
}

/* --- Animated Gradient Golden Buttons --- */
.btn-gold {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    background-size: 200% auto;
    color: #0a1128;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    animation: goldGradientMove 3s ease infinite, goldenGlowPulse 3s infinite;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 229, 171, 0.5);
}

.btn-outline {
    border: 1px solid #f3e5ab;
    color: #f3e5ab;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(243, 229, 171, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(243, 229, 171, 0.3);
}

/* --- Animated Welcome Section --- */
.welcome-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #0a1128 0%, #101c3d 100%);
    border-bottom: 1px solid #2e3a59;
}


.hero-badge {
    background: rgba(243, 229, 171, 0.1);
    color: #f3e5ab;
    border: 1px solid #f3e5ab;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: goldenGlowPulse 2.5s infinite;
}

.hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    color: #a0aec0;
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- Cards Grid Section --- */
.section {
    padding: 70px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    color: #ffffff;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    flex: 1 1 280px;
    max-width: 350px;
    background: linear-gradient(145deg, #1c2541 0%, #111a33 100%);
    border: 1px solid #2e3a59;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Card Light Golden Border Glow on Hover */
.card:hover {
    transform: translateY(-8px);
    border-color: #f3e5ab;
    box-shadow: 0 10px 30px rgba(243, 229, 171, 0.25);
}

.card-icon {
    font-size: 2.5rem;
    color: #f3e5ab;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background: #050a18;
    padding: 25px 8%;
    text-align: center;
    border-top: 1px solid #2e3a59;
    color: #a0aec0;
    font-size: 0.9rem;
}
	@charset "utf-8";

/* ===================================================
   ROYAL DARK BLUE & LIGHT GOLDEN GRADIENT ANIMATION
   =================================================== */

/* Golden Shimmer Background Animation Keyframes */
@keyframes goldGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle Glowing Animation */
@keyframes goldenGlowPulse {
    0% { box-shadow: 0 0 10px rgba(243, 229, 171, 0.2); }
    50% { box-shadow: 0 0 25px rgba(243, 229, 171, 0.5); }
    100% { box-shadow: 0 0 10px rgba(243, 229, 171, 0.2); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a1128;
    color: #ffffff;
    line-height: 1.6;
}

/* --- Animated Gradient Text (Golden Shimmer) --- */
.logo-text p, 
.section-title span, 
.hero-title span,
.animated-gold-text {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 40%, #fff0b3 70%, #aa7c11 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldGradientMove 4s ease infinite;
    font-weight: 700;
}

/* --- Top Bar Info --- */
.top-bar {
    background: #050a18;
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
    border-bottom: 1px solid rgba(243, 229, 171, 0.2);
}

.top-bar i { 
    color: #f3e5ab; 
    margin-right: 5px; 
}

/* --- Navigation Header with Animated Border --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #0a1128, #f3e5ab, #d4af37, #0a1128) 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    background-size: 200% 200%;
    animation: goldGradientMove 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    color: #f3e5ab;
    background: rgba(243, 229, 171, 0.1);
}

/* --- Animated Gradient Golden Buttons --- */
.btn-gold {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    background-size: 200% auto;
    color: #0a1128;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    animation: goldGradientMove 3s ease infinite, goldenGlowPulse 3s infinite;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 229, 171, 0.5);
}

.btn-outline {
    border: 1px solid #f3e5ab;
    color: #f3e5ab;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(243, 229, 171, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(243, 229, 171, 0.3);
}

/* --- Animated Welcome Section --- */
.welcome-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #0a1128 0%, #101c3d 100%);
    border-bottom: 1px solid #2e3a59;
}

.hero-badge {
    background: rgba(243, 229, 171, 0.1);
    color: #f3e5ab;
    border: 1px solid #f3e5ab;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: goldenGlowPulse 2.5s infinite;
}

.hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    color: #a0aec0;
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- Cards Grid Section --- */
.section {
    padding: 70px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    color: #ffffff;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    flex: 1 1 280px;
    max-width: 350px;
    background: linear-gradient(145deg, #1c2541 0%, #111a33 100%);
    border: 1px solid #2e3a59;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Card Light Golden Border Glow on Hover */
.card:hover {
    transform: translateY(-8px);
    border-color: #f3e5ab;
    box-shadow: 0 10px 30px rgba(243, 229, 171, 0.25);
}

.card-icon {
    font-size: 2.5rem;
    color: #f3e5ab;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background: #050a18;
    padding: 25px 8%;
    text-align: center;
    border-top: 1px solid #2e3a59;
    color: #a0aec0;
    font-size: 0.9rem;
}
	/* Custom Site Logo Styling */
.site-logo {
    width: 50px;            /* Width size */
    height: 50px;           /* Height size */
    object-fit: contain;     /* Image stretch hone se bachayega */
    border-radius: 50%;     /* Agar round logo banana ho (optional) */
    border: 2px solid #f3e5ab; /* Soft golden border */
    padding: 2px;
}
	/* ===================================================
   GLOWING CENTERED WATERMARK LOGO
   =================================================== */

/* Golden Glow Keyframes */
@keyframes logoGlowPulse {
    0% {
        box-shadow: 0 0 15px rgba(243, 229, 171, 0.4);
        filter: brightness(0.8) opacity(0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(243, 229, 171, 0.7);
        filter: brightness(1.1) opacity(0.35); /* Glow ke beech transparency kam ho kar bright lage */
    }
    100% {
        box-shadow: 0 0 15px rgba(243, 229, 171, 0.4);
        filter: brightness(0.8) opacity(0.2);
    }
}

/* Watermark Container Styling */
.watermark-container {
    position: fixed;        /* Screen par fix rahega */
    top: 50%;               /* Vertical middle */
    left: 50%;              /* Horizontal middle */
    transform: translate(-50%, -50%); /* Bilkul center point */
    z-index: -1;            /* Content ke peeche rahay */
    pointer-events: none;   /* Click karne se koi issue na ho */
    width: 250px;           /* Logo size */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    /* Continuous Golden Glow Pulse Animation */
    animation: logoGlowPulse 5s ease-in-out infinite; 
}
/* ===================================================
   NAVIGATION DROPDOWN MENU
   =================================================== */

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* More Button Styling */
.dropbtn {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropbtn i {
    font-size: 0.8rem;
    margin-left: 4px;
    color: #d4af37; /* Golden Arrow Icon */
}

/* Dropdown Menu (Hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0d1a3a; /* Dark Blue Matching Theme */
    min-width: 170px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Golden Border */
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
    padding: 5px 0;
}

/* Dropdown Links Styling */
.dropdown-content a {
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

/* Hover Effects */
.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.15); /* Light Golden Glow Background */
    color: #f3e5ab;
}

/* Show Menu on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #f3e5ab;
}
	/* ===================================================
   FLOATING PROFESSIONAL ANIMATED BUTTONS (WhatsApp & Assistant)
   =================================================== */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease;
    animation: bouncePulse 2s infinite;
}

/* 1. WhatsApp Button Styling (Green) */
.whatsapp-float {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* 2. Assistant Button Styling (Gold / Blue Professional Theme) */
.assistant-float {
    background: linear-gradient(135deg, #d4af37, #aa771c);
}

/* Hover Animation Effects */
.float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

/* Tooltip Text on Hover (Professional Feature) */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background: rgba(10, 17, 40, 0.95);
    color: #f3e5ab;
    padding: 6px 14px;
    font-size: 13px;
    font-family: inherit;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Continuous Pulse & Glow Keyframe Animation */
@keyframes bouncePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}
	/* ===================================================
   ACHIEVEMENTS / COUNTER SECTION STYLING
   =================================================== */
.achievements-section {
    padding: 60px 20px;
    background: #080f26; /* Dark Blue Matching Theme */
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-section .section-title h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.achievements-section .section-title h2 span {
    color: #d4af37; /* Golden Accent */
}

.achievements-section .section-title p {
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-content: center;
}

/* Individual Stat Cards */
.stat-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: #f3e5ab;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

/* Golden Circular Icon Box */
.stat-icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px auto;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 26px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-box {
    background: #d4af37;
    color: #080f26;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Numbers & Labels */
.stat-number-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.stat-number-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: inherit;
}

.stat-number-box .plus-sign {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 10px;
    font-weight: 500;
}
	/* ===================================================
   FOOTER SECTION STYLING (Dark Blue & Golden Theme)
   =================================================== */
.site-footer {
    background-color: #050a18; /* Dark Midnight Navy */
    color: #cbd5e1;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px 40px 25px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Brand Column */
.footer-title {
    color: #d4af37; /* Gold Accent */
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.footer-bio {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 420px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #f3e5ab;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #050a18;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Link Columns */
.footer-heading {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.93rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030712;
    padding: 18px 25px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.copyright-text, .dev-tagline {
    margin: 0;
}

@media (max-width: 600px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
	/* ===================================================
   LATEST UPDATES & FIREWORKS SECTION STYLING
   =================================================== */
.updates-section {
    padding: 60px 20px;
    background: #080f26;
}

.updates-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Header Badge Style */
.section-badge-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.badge-glow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #d4af37;
    color: #050a18;
    padding: 10px 30px;
    border-radius: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border: 2px solid #f3e5ab;
}

.bell-ring {
    animation: bellShake 2s infinite ease-in-out;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
}

.section-subtitle {
    color: #cbd5e1;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Main Announcement Card with Soft Blinking Theme Glow */
.announcement-card-glow {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    animation: themePulseGlow 4s infinite alternate ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Soft Theme Blinking Animation */
@keyframes themePulseGlow {
    0% {
        border-color: rgba(212, 175, 55, 0.25);
        box-shadow: 0 0 15px rgba(8, 15, 38, 0.5);
    }
    100% {
        border-color: rgba(212, 175, 55, 0.65);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.1);
    }
}

/* Left Image Frame Wrapper */
.poster-frame-wrapper {
    position: relative;
    flex: 0 0 260px;
    height: 320px;
    border-radius: 14px;
    padding: 4px;
    background: linear-gradient(135deg, #d4af37, #1e3a8a);
}

.poster-image-box {
    width: 100%;
    height: 100%;
    background: #050a18;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.placeholder-content {
    text-align: center;
    color: #d4af37;
}

.placeholder-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.placeholder-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
}

/* ===================================================
   GOLDEN & BLUE FIREWORKS SPARKS (5 SECONDS INTERVAL)
   =================================================== */
.fireworks-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    animation: fireworksSpark 5s infinite ease-out;
}

/* Spark Colors: Golden & Cyan Blue */
.spark-1 {
    top: 15%;
    left: 20%;
    background: #ffd700;
    box-shadow: 0 0 12px 6px #ffd700, 0 0 20px 10px #2563eb;
    animation-delay: 0s;
}

.spark-2 {
    bottom: 20%;
    right: 15%;
    background: #38bdf8;
    box-shadow: 0 0 12px 6px #38bdf8, 0 0 20px 10px #d4af37;
    animation-delay: 0.2s;
}

.spark-3 {
    top: 50%;
    left: 70%;
    background: #f3e5ab;
    box-shadow: 0 0 15px 8px #f3e5ab, 0 0 22px 12px #1d4ed8;
    animation-delay: 0.4s;
}

@keyframes fireworksSpark {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        transform: scale(2.5) rotate(180deg);
        opacity: 1;
    }
    20% {
        transform: scale(0.2) translate(15px, -15px);
        opacity: 0;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Right Content Details */
.event-details-content {
    flex: 1;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.meta-item {
    color: #94a3b8;
    font-size: 0.88rem;
}

.meta-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.event-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-description {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.urdu-event-desc {
    color: #f3e5ab;
    font-size: 0.95rem;
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    margin-bottom: 22px;
    font-family: 'Noto Nastaliq Urdu', 'Segoe UI', Tahoma, sans-serif;
}

/* Action Buttons */
.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-dark {
    background: #000000;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-golden-glow {
    background: linear-gradient(135deg, #d4af37, #aa771c);
    color: #050a18;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-golden-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .announcement-card-glow {
        flex-direction: column;
    }
    .poster-frame-wrapper {
        width: 100%;
        height: 250px;
    }
}/* ===================================================
   COURSES SECTION STYLING (Dark Blue & Golden Theme)
   =================================================== */
.courses-section {
    padding: 60px 20px;
    background: #050a18;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.subtitle-english {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 8px;
    margin-bottom: 40px;
}

/* Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Course Card Item */
.course-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35 ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.course-card:hover {
    transform: translateY(-7px);
    border-color: #f3e5ab;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* Thumbnail Box & Badge */
.course-thumb-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-thumb-box img {
    transform: scale(1.08);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #aa771c);
    color: #050a18;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.course-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Smooth Urdu Nastaliq Typography */
.course-urdu-desc {
    color: #cbd5e1;
    font-size: 1rem;
    direction: rtl;
    text-align: right;
    line-height: 2.1;
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', Urdu, serif;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 10px;
    border-right: 3px solid #d4af37;
}

/* Pricing Section */
.course-price-box {
    margin-top: auto;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

.primary-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pkr-amount {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.per-month {
    color: #94a3b8;
    font-size: 0.85rem;
}

.sub-price-details {
    margin-top: 6px;
}

.pkr-total {
    color: #94a3b8;
    font-size: 0.82rem;
    margin: 2px 0;
}

.inr-amount {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 4px 0 2px 0;
    font-weight: 600;
}

.inr-total {
    color: #94a3b8;
    font-size: 0.82rem;
    margin: 0;
}

/* View Course Button */
.btn-view-course {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-view-course:hover {
    background: #d4af37;
    color: #050a18;
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Bottom View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 45px;
}

.btn-view-all {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid #d4af37;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-view-all:hover {
    background: #d4af37;
    color: #050a18;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
	/* ===================================================
   FLOATING APPOINTMENT BUTTON & MODAL STYLING
   =================================================== */

/* Floating Button Position & Floating Movement */
.floating-appointment-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #aa771c);
    color: #050a18;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid #f3e5ab;
    animation: verticalBounce 2.5s infinite ease-in-out;
    transition: all 0.3s ease;
}

.floating-appointment-btn i {
    font-size: 1.2rem;
}

.floating-appointment-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.7);
    color: #000000;
}

/* Vertical Floating Up & Down Keyframes */
@keyframes verticalBounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 18px 35px rgba(212, 175, 55, 0.6);
    }
}

/* Modal Overlay Design */
.appt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.appt-modal-card {
    background: #080f26;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-appt-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #f3e5ab;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.close-appt-btn:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* Modal Header */
.appt-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.appt-icon-gold {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.appt-modal-header h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin: 0 0 6px 0;
}

.appt-modal-header p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

/* Form Controls Styling */
.form-group-custom {
    margin-bottom: 16px;
    text-align: left;
}

.form-group-custom label {
    display: block;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group-custom input,
.form-group-custom select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

.form-group-custom select option {
    background: #080f26;
    color: #ffffff;
}

.form-group-custom input:focus,
.form-group-custom select:focus {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Submit Button */
.btn-submit-appt {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-submit-appt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 600px) {
    .floating-appointment-btn span {
        display: none; /* Mobile screen par sirf icon dikhega */
    }
    .floating-appointment-btn {
        padding: 15px;
        border-radius: 50%;
    }
}
	/* ===================================================
   FULL PAGE GOLDEN PARTICLES CANVAS STYLING
   =================================================== */
#goldenParticlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* User is par click kar sakega bina kisi rukawat ke */
    z-index: 9999; /* Smooth visibility across all sections */
    opacity: 0.75;  /* Soft & elegant transparency */
}
	/* Logo Size Control */
.logo-container img {
    max-width: 80px !important;
    height: auto !important;
    object-fit: contain;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
	/* Floating Contact Buttons Position */
.floating-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.btn-wa { background-color: #25d366; }
.btn-assistant { background-color: #d4af37; color: #000; }